maint(ct): simplify test helpers#2523
Merged
mergify[bot] merged 1 commit intodevelopfrom May 13, 2022
Merged
Conversation
|
smartcontracts
commented
May 2, 2022
tynes
approved these changes
May 3, 2022
Contributor
|
Intermittent geth test failure: |
mslipper
approved these changes
May 5, 2022
Simplifies test helpers slightly by cutting out unnecessary code.
855c80f to
fba10d5
Compare
Contributor
|
This PR has been added to the merge queue, and will be merged soon. |
Contributor
|
This PR is next in line to be merged, and will be merged as soon as checks pass. |
theochap
pushed a commit
that referenced
this pull request
Dec 10, 2025
Fixes the GitHub Actions workflow error: "Unexpected input(s) 'only', 'exempt-all-pr-labels'" in the stale PR management workflow. ## Changes Made 1. **Fixed `only` parameter**: Changed `only: pulls` to `only-pulls: true` - The `actions/stale@v9` action expects `only-pulls` as a boolean parameter, not `only` as a string 2. **Removed invalid `exempt-all-pr-labels` parameter**: - This parameter doesn't exist in the `actions/stale@v9` action - The existing `exempt-pr-labels: 'M-prevent-stale'` already handles label-based exemptions correctly ## Validation - ✅ YAML syntax validation passes - ✅ All other workflow parameters remain unchanged and valid - ✅ Workflow functionality preserved (still processes only PRs and respects exemption labels) The workflow will now run without errors and continue to automatically manage stale PRs as intended. > [!WARNING] > > <details> > <summary>Firewall rules blocked me from connecting to one or more addresses</summary> > > #### I tried to connect to the following addresses, but was blocked by firewall rules: > > - `https://api.github.com/repos/actions/stale` > - Triggering command: `curl -s REDACTED` (http block) > > If you need me to access, download, or install something from one of these locations, you can either: > > - Configure [Actions setup steps](https://gh.io/copilot/actions-setup-steps) to set up my environment, which run before the firewall is enabled > - Add the appropriate URLs or hosts to my [firewall allow list](https://gh.io/copilot/firewall-config) > > </details> <!-- START COPILOT CODING AGENT TIPS --> --- 💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click [here](https://survey.alchemer.com/s3/8343779/Copilot-Coding-agent) to start the survey. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: refcell <21288394+refcell@users.noreply.github.com> Co-authored-by: refcell <abigger87@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Simplifies test helpers slightly by cutting out unnecessary code.